home *** CD-ROM | disk | FTP | other *** search
/ Kimeruze! Yamikon! / Kimeruze! Yamikon!.iso / pc / yarikon / wevent09.dxr / 00043.ls < prev    next >
Encoding:
Text File  |  1996-10-23  |  264 b   |  18 lines

  1. on mouseDown
  2.   set the visible of sprite 6 to 1
  3.   updateStage()
  4.   repeat while stillDown()
  5.   end repeat
  6.   set the visible of sprite 6 to 0
  7.   updateStage()
  8. end
  9.  
  10. on mouseUp
  11.   set data to random(2)
  12.   if data = 1 then
  13.     go("user")
  14.   else
  15.     go("girl")
  16.   end if
  17. end
  18.